home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / m2 / cat3src / cat / cathelp.d < prev    next >
Text File  |  1997-10-26  |  893b  |  24 lines

  1. DEFINITION MODULE CatHelp;
  2.  
  3. IMPORT Lists;
  4.  
  5. TYPE    tHelp = (general, catinfo, editor, grin, manager, msglist, 
  6.                  treelist, formats, 
  7.                  paths, allgconf, tauschconf, listconf, searchdial, 
  8.                  smallsearch, filter, groupsel, groupRead, groupWrite, 
  9.                  groupUser, infoRead, infoEdit, oversize, selectGroup, 
  10.                  reghelp, wvhelp, textsearch, textrepl, changemsg,
  11.                  itkhelp, configInfile, confEdit, iofilter);
  12.  
  13. PROCEDURE DoHelp (topic: tHelp);
  14.  
  15. PROCEDURE DoExternalHelp (VAR helpList: Lists.List);
  16. (* Es wird eine Liste bergeben, die in der Hilfedialogbox
  17.  * angezeigt wird. Die Liste besteht aus Zeigern auf einzelne
  18.  * Strings, wobei jeder String nicht l„nger als 65 Zeichen sein
  19.  * darf. Die Liste wird am Ende automatisch dealloziert,
  20.  * ist also nicht mehr benutzbar
  21.  *)
  22.  
  23. END CatHelp.
  24.